home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 July: Mac OS SDK / Dev.CD Jul 96 SDK / Dev.CD Jul 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc Development Framework / Tools & Goodies / IntlTest / Sources / View.h < prev   
Encoding:
Text File  |  1996-04-23  |  1.3 KB  |  51 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                View.h
  4. //    Release Version:    $ ODF 1 $
  5. //
  6. //    Author:                Mary Boetcher
  7. //
  8. //    Copyright:            (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  9. //
  10. //========================================================================================
  11.  
  12. #ifndef VIEW_H
  13. #define VIEW_H
  14.  
  15. // ----- Part Layer -----
  16.  
  17. #ifndef FWSVIEW_H
  18. #include "FWSView.h"
  19. #endif
  20.  
  21. //========================================================================================
  22. // Forward Declarations
  23. //========================================================================================
  24.  
  25. class FW_CViewContext;
  26. class FW_CMouseEvent;
  27.  
  28. //========================================================================================
  29. // CIntlTestView
  30. //========================================================================================
  31.  
  32. class CIntlTestView : public FW_CSuperView
  33. {
  34. public:
  35.     FW_DECLARE_CLASS
  36.  
  37. public:        
  38.     CIntlTestView(Environment* ev, 
  39.                   FW_CSuperView* container, 
  40.                   const FW_CRect& contentRect, 
  41.                   const FW_CPoint& extent);
  42.     virtual ~ CIntlTestView();
  43.  
  44. public:        
  45.     virtual void         Draw(Environment* ev, ODFacet* odFacet, ODShape* invalidShape);
  46.  
  47.     void                 CenterInFrame(Environment* ev, FW_CPoint& size, FW_Boolean redraw);
  48. };
  49.  
  50. #endif
  51.